home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 21 / CU Amiga Magazine's Super CD-ROM 21 (1998)(EMAP Images)(GB)[!][issue 1998-04].iso / CUCD / Programming / Python-1.4 / Python1.4_Source / Modules / syslogmodule.c < prev    next >
C/C++ Source or Header  |  1996-12-15  |  6KB  |  228 lines

  1. /***********************************************************
  2. Copyright 1994 by Lance Ellinghouse,
  3. Cathedral City, California Republic, United States of America.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its 
  8. documentation for any purpose and without fee is hereby granted, 
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in 
  11. supporting documentation, and that the name of Lance Ellinghouse
  12. not be used in advertising or publicity pertaining to distribution 
  13. of the software without specific, written prior permission.
  14.  
  15. LANCE ELLINGHOUSE DISCLAIMS ALL WARRANTIES WITH REGARD TO
  16. THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  17. FITNESS, IN NO EVENT SHALL LANCE ELLINGHOUSE BE LIABLE FOR ANY SPECIAL, 
  18. INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING 
  19. FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, 
  20. NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION 
  21. WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  22.  
  23. ******************************************************************/
  24.  
  25. /******************************************************************
  26.  
  27. Revision history:
  28.  
  29. 95/06/29 (Steve Clift)
  30.   - Changed arg parsing to use PyArg_ParseTuple.
  31.   - Added PyErr_Clear() call(s) where needed.
  32.   - Fix core dumps if user message contains format specifiers.
  33.   - Change openlog arg defaults to match normal syslog behaviour.
  34.   - Plug memory leak in openlog().
  35.   - Fix setlogmask() to return previous mask value.
  36.  
  37. ******************************************************************/
  38.  
  39. /* syslog module */
  40.  
  41. #include "Python.h"
  42.  
  43. #include <syslog.h>
  44.  
  45. #include "protos/syslogmodule_protos.h"
  46.  
  47. static PyObject * 
  48. syslog_openlog(self, args)
  49.      PyObject * self;
  50.      PyObject * args;
  51. {
  52.   long logopt = 0;
  53.   long facility = LOG_USER;
  54.  
  55.   static PyObject *ident_o = NULL;
  56.  
  57.   Py_XDECREF(ident_o);
  58.   if (!PyArg_ParseTuple(args, "S|ll;ident string [, logoption [, facility]]",
  59.             &ident_o, &logopt, &facility)) {
  60.     return NULL;
  61.   }
  62.   Py_INCREF(ident_o); /* This is needed because openlog() does NOT make a copy
  63.                  and syslog() later uses it.. cannot trash it. */
  64.  
  65.   openlog(PyString_AsString(ident_o), logopt, facility);
  66.  
  67.   Py_INCREF(Py_None);
  68.   return Py_None;
  69. }
  70.  
  71. static PyObject * 
  72. syslog_syslog(self, args)
  73.      PyObject * self;
  74.      PyObject * args;
  75. {
  76.   char *message, *s;
  77.   int   priority = LOG_INFO | LOG_USER;
  78.  
  79.   if (!PyArg_ParseTuple(args, "is;[priority,] message string",
  80.             &priority, &message)) {
  81.     PyErr_Clear();
  82.     if (!PyArg_ParseTuple(args, "s;[priority,] message string", &message)) {
  83.       return NULL;
  84.     }
  85.   }
  86.   syslog(priority, "%s", message);
  87.   Py_INCREF(Py_None);
  88.   return Py_None;
  89. }
  90.  
  91. static PyObject * 
  92. syslog_closelog(self, args)
  93.      PyObject * self;
  94.      PyObject * args;
  95. {
  96.     if (!PyArg_ParseTuple(args, ""))
  97.         return NULL;
  98.     closelog();
  99.     Py_INCREF(Py_None);
  100.     return Py_None;
  101. }
  102.  
  103. static PyObject * 
  104. syslog_setlogmask(self, args)
  105.      PyObject * self;
  106.      PyObject * args;
  107. {
  108.   long maskpri, omaskpri;
  109.  
  110.   if (!PyArg_ParseTuple(args,"l;mask for priority",&maskpri))
  111.     return NULL;
  112.   omaskpri = setlogmask(maskpri);
  113.   return PyInt_FromLong(omaskpri);
  114. }
  115.  
  116. static PyObject * 
  117. syslog_log_mask(self, args)
  118.      PyObject * self;
  119.      PyObject * args;
  120. {
  121.   long mask;
  122.   long pri;
  123.   if (!PyArg_ParseTuple(args,"l",&pri))
  124.     return NULL;
  125.   mask = LOG_MASK(pri);
  126.   return PyInt_FromLong(mask);
  127. }
  128.  
  129. static PyObject * 
  130. syslog_log_upto(self, args)
  131.      PyObject * self;
  132.      PyObject * args;
  133. {
  134.   long mask;
  135.   long pri;
  136.   if (!PyArg_ParseTuple(args,"l",&pri))
  137.     return NULL;
  138.   mask = LOG_UPTO(pri);
  139.   return PyInt_FromLong(mask);
  140. }
  141.  
  142. /* List of functions defined in the module */
  143.  
  144. static PyMethodDef syslog_methods[] = {
  145.     {"openlog",    syslog_openlog,        METH_VARARGS},
  146.     {"closelog",    syslog_closelog,    METH_VARARGS},
  147.     {"syslog",    syslog_syslog,        METH_VARARGS},
  148.     {"setlogmask",    syslog_setlogmask,    METH_VARARGS},
  149.     {"LOG_MASK",    syslog_log_mask,    METH_VARARGS},
  150.     {"LOG_UPTO",    syslog_log_upto,    METH_VARARGS},
  151.     {NULL,        NULL,            0}
  152. };
  153.  
  154. /* Initialization function for the module */
  155.  
  156. #define DICT_SET_INT(d, s, x) \
  157.     PyDict_SetItemString(d, s, PyInt_FromLong((long) (x)))
  158.  
  159. void
  160. initsyslog()
  161. {
  162.     PyObject *m, *d;
  163.  
  164. #ifdef AMITCP
  165.     if(!checkbsdsocketlib()) return;
  166. #endif
  167.  
  168.     /* Create the module and add the functions */
  169.     m = Py_InitModule("syslog", syslog_methods);
  170.  
  171.     /* Add some symbolic constants to the module */
  172.     d = PyModule_GetDict(m);
  173.  
  174.     /* Priorities */
  175.     DICT_SET_INT(d, "LOG_EMERG",    LOG_EMERG);
  176.     DICT_SET_INT(d, "LOG_ALERT",    LOG_ALERT);
  177.     DICT_SET_INT(d, "LOG_CRIT",    LOG_CRIT);
  178.     DICT_SET_INT(d, "LOG_ERR",    LOG_ERR);
  179.     DICT_SET_INT(d, "LOG_WARNING",    LOG_WARNING);
  180.     DICT_SET_INT(d, "LOG_NOTICE",    LOG_NOTICE);
  181.     DICT_SET_INT(d, "LOG_INFO",    LOG_INFO);
  182.     DICT_SET_INT(d, "LOG_DEBUG",    LOG_DEBUG);
  183.  
  184.     /* openlog() option flags */
  185.     DICT_SET_INT(d, "LOG_PID",    LOG_PID);
  186.     DICT_SET_INT(d, "LOG_CONS",    LOG_CONS);
  187.     DICT_SET_INT(d, "LOG_NDELAY",    LOG_NDELAY);
  188.     DICT_SET_INT(d, "LOG_NOWAIT",    LOG_NOWAIT);
  189. #ifdef LOG_PERROR
  190.     DICT_SET_INT(d, "LOG_PERROR",    LOG_PERROR);
  191. #endif
  192.  
  193.     /* Facilities */
  194.     DICT_SET_INT(d, "LOG_KERN",    LOG_KERN);
  195.     DICT_SET_INT(d, "LOG_USER",    LOG_USER);
  196.     DICT_SET_INT(d, "LOG_MAIL",    LOG_MAIL);
  197.     DICT_SET_INT(d, "LOG_DAEMON",    LOG_DAEMON);
  198.     DICT_SET_INT(d, "LOG_AUTH",    LOG_AUTH);
  199.     DICT_SET_INT(d, "LOG_LPR",    LOG_LPR);
  200. #ifdef LOG_NEWS
  201.     DICT_SET_INT(d, "LOG_NEWS",    LOG_NEWS);
  202. #else
  203.     DICT_SET_INT(d, "LOG_NEWS",    LOG_MAIL);
  204. #endif
  205. #ifdef LOG_UUCP
  206.     DICT_SET_INT(d, "LOG_UUCP",    LOG_UUCP);
  207. #else
  208.     DICT_SET_INT(d, "LOG_UUCP",    LOG_MAIL);
  209. #endif
  210. #ifdef LOG_CRON
  211.     DICT_SET_INT(d, "LOG_CRON",    LOG_CRON);
  212. #else
  213.     DICT_SET_INT(d, "LOG_CRON",    LOG_DAEMON);
  214. #endif
  215.     DICT_SET_INT(d, "LOG_LOCAL0",    LOG_LOCAL0);
  216.     DICT_SET_INT(d, "LOG_LOCAL1",    LOG_LOCAL1);
  217.     DICT_SET_INT(d, "LOG_LOCAL2",    LOG_LOCAL2);
  218.     DICT_SET_INT(d, "LOG_LOCAL3",    LOG_LOCAL3);
  219.     DICT_SET_INT(d, "LOG_LOCAL4",    LOG_LOCAL4);
  220.     DICT_SET_INT(d, "LOG_LOCAL5",    LOG_LOCAL5);
  221.     DICT_SET_INT(d, "LOG_LOCAL6",    LOG_LOCAL6);
  222.     DICT_SET_INT(d, "LOG_LOCAL7",    LOG_LOCAL7);
  223.  
  224.     /* Check for errors */
  225.     if (PyErr_Occurred())
  226.         Py_FatalError("can't initialize module syslog");
  227. }
  228.